home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / 3dprograms / t3dlib / source / writelwob_protos.h < prev    next >
Text File  |  1995-02-13  |  1KB  |  48 lines

  1. /* Prototypes for functions defined in
  2. writelwob.c
  3.  */
  4.  
  5. static void put_name(WORLD * world,
  6.                      register char * name,
  7.                      register int size);
  8.  
  9. static void put_UBYTE(WORLD * world,
  10.                       int u);
  11.  
  12. static void put_UWORD(WORLD * world,
  13.                       int w);
  14.  
  15. static void put_ULONG(WORLD * world,
  16.                       unsigned long l);
  17.  
  18. static void put_FRACT(WORLD * world,
  19.                       double f);
  20.  
  21. static void put_XYZ(WORLD * world,
  22.                     XYZ_st * st);
  23.  
  24. static void put_RGB(WORLD * world,
  25.                     RGB_st * st);
  26.  
  27. static void write_size(WORLD * world,
  28.                        long pos);
  29.  
  30. int write_LWOB(WORLD * world,
  31.                FILE * myfile);
  32.  
  33. void dump_points(WORLD * world,
  34.                 register OBJECT * object);
  35.  
  36. static void process_INFO(WORLD * world,
  37.                          INFO * info);
  38.  
  39. static void process_OBJ(WORLD * world,
  40.                         OBJECT * obj);
  41.  
  42. static void process_EXTR(WORLD * world,
  43.                          OBJECT * obj);
  44.  
  45. static void process_DESC(WORLD * world,
  46.                          OBJECT * obj);
  47.  
  48.